home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet bezpieczenstwa
/
mini Pentoo LiveCD 2006.1
/
mpentoo-2006.1.iso
/
livecd.squashfs
/
usr
/
share
/
idl
/
Table.idl
< prev
Wrap
Text File
|
2005-10-20
|
618b
|
33 lines
#if !defined(__LIBGNORBA_COMPILATION) && defined(__ORBIT_IDL__)
%{
#pragma include_defs libgnorba/Table.h
%}
#pragma inhibit push
#endif
module GNOME {
interface Table {
const short VALUE_STRING = 0;
const short VALUE_FLOAT = 2;
union Value switch(short) {
case VALUE_FLOAT: double v_float;
case VALUE_STRING: string str;
};
exception OutOfRange {};
Value get (in long col, in long row)
raises (OutOfRange);
long set (in long col, in long row, in Value val)
raises (OutOfRange);
};
};
#if !defined(__LIBGNORBA_COMPILATION) && defined(__ORBIT_IDL__)
#pragma inhibit pop
#endif